From bd9997b52e692a0922fdec8653a21a95b6698770 Mon Sep 17 00:00:00 2001 From: robertlipe Date: Tue, 11 Feb 2014 02:53:10 +0000 Subject: [PATCH] Fix theoretical overrun in tiger reader. git-svn-id: http://gpsbabel.googlecode.com/svn/trunk@4729 f51c46e8-681c-474f-0cfe-069cfd0219fb --- gpsbabel/tiger.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gpsbabel/tiger.cc b/gpsbabel/tiger.cc index 865ede221..1b2a4c6f1 100644 --- a/gpsbabel/tiger.cc +++ b/gpsbabel/tiger.cc @@ -154,8 +154,8 @@ static void data_read(void) { double lat,lon; - char desc[100]; - char icon[100]; + char desc[101]; + char icon[101]; char* ibuf; Waypoint* wpt_tmp; int line = 0; -- 2.30.2